mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 15:39:50 -05:00
12 lines
233 B
Bash
Executable file
12 lines
233 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
sudo cp /root/.bashrc /home/uxbox/.bashrc
|
|
sudo cp /root/.vimrc /home/uxbox/.vimrc
|
|
sudo cp /root/.tmux.conf /home/uxbox/.tmux.conf
|
|
|
|
source /home/uxbox/.bashrc
|
|
sudo chown uxbox:users /home/uxbox
|
|
|
|
exec "$@"
|