11 lines
220 B
Bash
Executable file
11 lines
220 B
Bash
Executable file
#!/usr/bin/env nix
|
|
#!nix shell nixpkgs#bash nixpkgs#deno --command bash
|
|
set -euo pipefail
|
|
|
|
cd /home/luka/HexName-Frontend
|
|
git pull
|
|
|
|
deno task build
|
|
sudo rm -rf /var/www/hexname/build
|
|
sudo cp -r build/ /var/www/hexname/
|
|
|