Skip to content

Commit 5608352

Browse files
committed
don't quote @
1 parent 6834b26 commit 5608352

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ jobs:
8484
echo "#!/bin/bash
8585
sudonot() {
8686
if command -v sudo >/dev/null; then
87-
sudo \"\${@:-:}\" || \"\${@:-:}\"
87+
sudo \${@:-:} || \${@:-:}
8888
else
89-
\"\${@:-:}\"
89+
\${@:-:}
9090
fi
9191
}
9292
sudonot apt-get update

0 commit comments

Comments
 (0)