commit 5e403cad14837cc1482c68b48316fe9861d0d737
parent 1bed1963813cfcf453603e450bb0c134909ff21b
Author: NunoSempere <nuno.sempere@protonmail.com>
Date: Mon, 12 Dec 2022 22:10:49 +0000
fix: small sh/bash incompatibility in rose-mklink
'echo -e' throws a warning in sh, but not in bash
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rose-mklink b/rose-mklink
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
test "$1" = "--help" || test -z "$1" && {
echo -e "usage: rose-mklink <alias> <url>\n"