mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
12 lines
236 B
Bash
Executable file
12 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
|
|
|