10 lines
367 B
Bash
10 lines
367 B
Bash
#!/bin/bash
|
|
username=$(getent passwd 1000 | cut -d: -f1)
|
|
repo_name=$1
|
|
cd /home/$username/$repo_name
|
|
pwd
|
|
git pull origin prod
|
|
#tmux send-keys -t directus C-c
|
|
#NUXT_TELEMETRY_DISABLED=1 bash -c \"npm run build\"
|
|
#tmux send-keys -t front \"cd /home/${username}/${front_folder} && node .output/server/index.mjs\" C-m
|
|
#tmux send-keys -t directus \"npx directus start\" C-m |