Skip to content

Commit 4742e74

Browse files
committed
fix(Makefile): remove redundant command parameter
1 parent 90eb512 commit 4742e74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ install-data-containers: check-fleet
5555
cp $(T).template . ; \
5656
NEW_FILENAME=`ls *.template | sed 's/\.template//g'`; \
5757
mv *.template $$NEW_FILENAME ; \
58-
MACHINE_ID=`$(FLEETCTL) list-machines --no-legend --full list-machines | awk 'BEGIN { OFS="\t"; srand() } { print rand(), $$1 }' | sort -n | cut -f2- | head -1` ; \
58+
MACHINE_ID=`$(FLEETCTL) list-machines --no-legend --full | awk 'BEGIN { OFS="\t"; srand() } { print rand(), $$1 }' | sort -n | cut -f2- | head -1` ; \
5959
sed -e "s/CHANGEME/$$MACHINE_ID/" $$NEW_FILENAME > $$NEW_FILENAME.bak ; \
6060
rm -f $$NEW_FILENAME ; \
6161
mv $$NEW_FILENAME.bak $$NEW_FILENAME ; \

0 commit comments

Comments
 (0)