blob: 3b292e856aa6068a461b96a189ee33b3b90ee2e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -eu
if [ -z "$2" ]; then
echo "Second argument is unset" >>/tmp/taskopen_debug.log
else
echo "Second argument is set to '$2'" >>/tmp/taskopen_debug.log
fi
taskopen "$1"
|