mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-03 14:15:42 +00:00
13 lines
236 B
Bash
Executable File
13 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Fix permissions for the mounted volume
|
|
sudo chown -R build:build /home/build/project
|
|
|
|
# Navigate to the build directory
|
|
cd /home/build/project
|
|
|
|
# Run makepkg as the build user
|
|
sudo -u build makepkg -s --noconfirm
|
|
|