7 lines
88 B
Bash
Executable File
7 lines
88 B
Bash
Executable File
#!/bin/bash
|
|
nk=$(pgrep npm)
|
|
git pull
|
|
npm run build
|
|
kill "$nk"
|
|
npm run preview -- --host
|