mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-21 22:50:59 -05:00
fix: correct naming error [skip ci]
This commit is contained in:
parent
2e13685998
commit
7e245df179
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ REMOTE_DIR=/root/revite
|
||||||
POST_INSTALL="pm2 restart revite"
|
POST_INSTALL="pm2 restart revite"
|
||||||
|
|
||||||
# Assets
|
# Assets
|
||||||
export REVOLT_SASS=https://github.com/revoltchat/assets
|
export REVOLT_SAAS=https://github.com/revoltchat/assets
|
||||||
|
|
||||||
|
|
||||||
# 1. Build Revite
|
# 1. Build Revite
|
||||||
|
|
|
@ -3,8 +3,8 @@ const { copy, remove, access } = require("fs-extra");
|
||||||
const { exec: cexec } = require("child_process");
|
const { exec: cexec } = require("child_process");
|
||||||
const { resolve } = require("path");
|
const { resolve } = require("path");
|
||||||
|
|
||||||
let target = process.env.REVOLT_SASS;
|
let target = process.env.REVOLT_SAAS;
|
||||||
let branch = process.env.REVOLT_SASS_BRANCH;
|
let branch = process.env.REVOLT_SAAS_BRANCH;
|
||||||
let DEFAULT_DIRECTORY = "public/assets_default";
|
let DEFAULT_DIRECTORY = "public/assets_default";
|
||||||
let OUT_DIRECTORY = "public/assets";
|
let OUT_DIRECTORY = "public/assets";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue