mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01: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
|