mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 00:40:30 -05:00
9 lines
156 B
Bash
9 lines
156 B
Bash
|
#!/usr/bin/env zsh
|
||
|
set -e;
|
||
|
|
||
|
echo "[init.sh] Setting up local permissions."
|
||
|
sudo chown -R uxbox /home/uxbox/local
|
||
|
|
||
|
echo "[init.sh] Ready!"
|
||
|
tail -f /dev/null
|