Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Fix quote
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Mar 26, 2019
1 parent 8c971a8 commit e401dd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shell_equinoxio.go
Expand Up @@ -77,7 +77,7 @@ execute() {
http_download "${TMPDIR}/${TARBALL}" "$TARBALL_URL"
(cd "$TMPDIR" && untar "$TARBALL")
test ! -d "${BINDIR} && install -d "${BINDIR}"
test ! -d "${BINDIR}" && install -d "${BINDIR}"
install "${TMPDIR}/${BINARY}" "${BINDIR}/"
log_info "installed ${BINDIR}/${BINARY}"
}` + shellfn + `OWNER={{ .Release.GitHub.Owner }}
Expand Down
2 changes: 1 addition & 1 deletion shell_godownloader.go
Expand Up @@ -83,7 +83,7 @@ execute() {
srcdir="${tmpdir}"
{{- end }}
(cd "${tmpdir}" && untar "${TARBALL}")
test ! -d "${BINDIR} && install -d "${BINDIR}"
test ! -d "${BINDIR}" && install -d "${BINDIR}"
for binexe in {{ range .Builds }}"{{ .Binary }}" {{ end }}; do
if [ "$OS" = "windows" ]; then
binexe="${binexe}.exe"
Expand Down
2 changes: 1 addition & 1 deletion shell_raw.go
Expand Up @@ -103,7 +103,7 @@ execute() {
TMPDIR=$(mktmpdir)
log_info "downloading from ${TARBALL_URL}"
http_download "${TMPDIR}/${NAME}" "$TARBALL_URL"
test ! -d "${BINDIR} && install -d "${BINDIR}"
test ! -d "${BINDIR}" && install -d "${BINDIR}"
install "${TMPDIR}/${NAME}" "${BINDIR}/${BINARY}"
log_info "installed ${BINDIR}/${BINARY}"
}
Expand Down

0 comments on commit e401dd8

Please sign in to comment.