mirror of
https://github.com/penpot/penpot.git
synced 2026-04-28 04:38:14 +00:00
11 lines
131 B
Bash
Executable File
11 lines
131 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
source ~/.bashrc
|
|
|
|
echo "[init.sh] Start nginx."
|
|
sudo nginx
|
|
|
|
echo "[init.sh] Ready!"
|
|
tail -f /dev/null
|