File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ main() {
188
188
if [ " ${RSH_ARGS-} " ]; then
189
189
RSH=" ${RSH-ssh} "
190
190
echoh " Installing remotely with $RSH $RSH_ARGS "
191
- curl -fsSL {{ .Origin }}/install.sh | prefix " $RSH_ARGS " " $RSH " " $RSH_ARGS " sh -s -- " $ALL_FLAGS "
191
+ curl -fsSL " {{ .Origin }}/install.sh" | prefix " $RSH_ARGS " " $RSH " " $RSH_ARGS " sh -s -- " $ALL_FLAGS "
192
192
return
193
193
fi
194
194
@@ -208,7 +208,7 @@ main() {
208
208
echoh
209
209
fi
210
210
211
- if [ ! has_standalone ] ; then
211
+ if ! has_standalone; then
212
212
echoerr " There is no binary for $OS -$ARCH "
213
213
exit 1
214
214
fi
@@ -306,7 +306,7 @@ has_standalone() {
306
306
amd64) return 0 ;;
307
307
arm64) return 0 ;;
308
308
armv7)
309
- [ " $( distro) " == " linux" ]
309
+ [ " $( distro) " = " linux" ]
310
310
return
311
311
;;
312
312
* ) return 1 ;;
You can’t perform that action at this time.
0 commit comments