build script and github actions for rootful and rootless builds

This commit is contained in:
Siddharth Saxena
2023-12-17 02:12:33 +05:30
parent 91e167e25d
commit 1d8626ae9b
11 changed files with 121 additions and 18 deletions

View File

@@ -1,5 +1,9 @@
#!/bin/bash
launchctl unload /var/jb/Library/LaunchDaemons/com.julioverne.screendumpd.plist
if [ -L "/var/jb" ]; then
launchctl unload /var/jb/Library/LaunchDaemons/com.julioverne.screendumpd.plist
else
launchctl unload /Library/LaunchDaemons/com.julioverne.screendumpd.plist
fi
exit 0;