We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeea63c commit 8e21479Copy full SHA for 8e21479
install.sh
@@ -79,13 +79,13 @@ fi
79
VERSION=$(curl -L -s $CDN_URL/cli/index.json | jq -r '.version')
80
81
# Download the gofred archive
82
-curl -L -o $TEMP_DIR/gofred-$OS.tar.gz $BINARY_URL/v$VERSION/gofred-$OS
+curl -L -o $OUTPUT_DIR/gofred $BINARY_URL/v$VERSION/gofred-$OS
83
84
# Extract the gofred binary
85
# tar -xf $TEMP_DIR/gofred-$OS.tar.gz -C $OUTPUT_DIR
86
87
# Rename the binary to gofred
88
-mv $OUTPUT_DIR/gofred-$OS $OUTPUT_DIR/gofred
+# mv $OUTPUT_DIR/gofred-$OS $OUTPUT_DIR/gofred
89
90
# Remove the archive
91
# rm $TEMP_DIR/gofred-$OS.tar.gz
0 commit comments