We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f5842 commit bf791daCopy full SHA for bf791da
1 file changed
snapcraft.yaml
@@ -19,7 +19,7 @@ source-code: https://github.com/shipshapecode/swach
19
20
apps:
21
swach:
22
- command: usr/bin/swach
+ command: usr/lib/swach/Swach
23
extensions:
24
- gnome
25
plugs:
@@ -54,6 +54,13 @@ parts:
54
override-build: |
55
# Fix chrome-sandbox permissions
56
chmod 0755 usr/lib/swach/chrome-sandbox
57
+ # Debug what files are available
58
+ echo "=== Files in current directory ==="
59
+ find . -name "*swach*" -type f
60
+ echo "=== Files in usr/bin ==="
61
+ find usr/bin -name "*swach*" -type f 2>/dev/null || echo "usr/bin not found"
62
+ echo "=== Files in usr/lib ==="
63
+ find usr/lib -name "*swach*" -type f 2>/dev/null || echo "usr/lib not found"
64
65
66
audio-record:
0 commit comments