Skip to content

Commit 638f381

Browse files
authored
Merge pull request #251 from Geode-solutions/fix/upload_folder_path
fix(Utils): fix run_back default upload_folder_path
2 parents e5ea82d + 7701535 commit 638f381

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

tests/integration/microservices/back/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
# pip-compile --output-file=tests/integration/microservices/back/requirements.txt tests/integration/microservices/back/requirements.in
66
#
77

8-
opengeodeweb-back==5.*,>=5.11.1rc1

tests/integration/microservices/viewer/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
# pip-compile --output-file=tests/integration/microservices/viewer/requirements.txt tests/integration/microservices/viewer/requirements.in
66
#
77

8-
opengeodeweb-viewer==1.*,>=1.11.6rc2

utils/local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ async function run_back(
118118
return new Promise(async (resolve, reject) => {
119119
let upload_folder_path = args.upload_folder_path
120120
if (!args.upload_folder_path) {
121-
upload_folder_path = args.project_folder_path
121+
upload_folder_path = path.join(args.project_folder_path, "uploads")
122122
}
123123
const port = await get_available_port()
124124
const back_args = [

0 commit comments

Comments
 (0)