Skip to content

Commit be8e200

Browse files
test
1 parent e2b6244 commit be8e200

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/local.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ async function run_back(
112112
command,
113113
args = {
114114
project_folder_path,
115-
upload_folder_path: path.join(project_folder_path, "uploads"),
116115
},
117116
) {
118117
return new Promise(async (resolve, reject) => {
118+
const upload_folder_path = path.join(project_folder_path, "uploads")
119119
const port = await get_available_port()
120120
const back_args = [
121121
"--port " + port,
122122
"--data_folder_path " + args.project_folder_path,
123-
"--upload_folder_path " + args.upload_folder_path,
123+
"--upload_folder_path " + upload_folder_path,
124124
"--allowed_origin http://localhost:*",
125125
"--timeout " + 0,
126126
]

0 commit comments

Comments
 (0)