Skip to content

Commit a444fce

Browse files
committed
linuxdeploy-plugin-nop.sh: +
1 parent 22532db commit a444fce

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

linuxdeploy-plugin-nop.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/sh
2+
# linuxdeploy-plugin-null.sh
3+
# * place next to the linuxdeploy AppImage
4+
# * run linuxdeploy with `--output nop`
5+
6+
set -ue
7+
8+
while [ $# != 0 ]; do case "$1" in
9+
(--plugin-api-version) printf '%s\n' 0; shift ;;
10+
(--plugin-type) printf '%s\n' output; shift ;;
11+
(*) break ;;
12+
esac; done
13+
14+
exit 0

0 commit comments

Comments
 (0)