We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec81ea commit 8636fe7Copy full SHA for 8636fe7
build.sh
@@ -169,7 +169,7 @@ _usage () {
169
_umount() { if mountpoint -q "${1}"; then umount -lf "${1}"; fi; }
170
171
# Mount helper Usage: _mount <source> <target>
172
-_mount() { ! mountpoint -q "${2}" && [[ -f "${1}" ]] && [[ -d "${2}" ]] && mount "${1}" "${2}"; }
+_mount() { ! mountpoint -q "${2}" && [[ -f "${1}" ]] && [[ -d "${2}" ]] && mount "${1}" "${2}"; return 0; }
173
174
# Unmount work dir
175
umount_work () {
0 commit comments