mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-24 23:04:00 +08:00
fix: incorrect paths
!nuf
This commit is contained in:
parent
1eebf748ba
commit
cdfcc9e663
1 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ const buildProject = () => {
|
|||
|
||||
const deployBackend = () => {
|
||||
console.log("Deploying backend...");
|
||||
runCommand("sh ./bin/deployBackend.sh");
|
||||
runCommand("sh ../bin/deployBackend.sh");
|
||||
};
|
||||
|
||||
const deployFrontend = () => {
|
||||
|
@ -178,7 +178,7 @@ const deployFrontend = () => {
|
|||
|
||||
const purgeCache = () => {
|
||||
console.log("Purging Cloudflare cache...");
|
||||
runCommand("sh ./bin/purgeCfCache.sh");
|
||||
runCommand("sh ../bin/purgeCfCache.sh");
|
||||
};
|
||||
|
||||
const generateChangelog = async () => {
|
||||
|
|
Loading…
Reference in a new issue