Skip to content

Commit

Permalink
Ensure that josm/core/nodist can have files pulled into it
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmock committed Oct 2, 2024
1 parent 196946f commit d0176d6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions actions/josm_plugin_clone/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28178,6 +28178,11 @@ async function cloneJosmFiles(directory) {
(0,path__WEBPACK_IMPORTED_MODULE_2__.join)(directory, "josm", "i18n"),
]);
await cloneCoreSubRepos((0,path__WEBPACK_IMPORTED_MODULE_2__.join)(directory, "josm"), "empty");
await (0,_actions_exec__WEBPACK_IMPORTED_MODULE_1__.exec)("svn", [
"update",
"--set-depth=empty",
(0,path__WEBPACK_IMPORTED_MODULE_2__.join)(directory, "josm", "core", "nodist"),
]);
await (0,_actions_exec__WEBPACK_IMPORTED_MODULE_1__.exec)("svn", [
"update",
(0,path__WEBPACK_IMPORTED_MODULE_2__.join)(directory, "josm", "core", "ivy.xml"),
Expand Down
5 changes: 5 additions & 0 deletions actions/josm_plugin_clone/src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ async function cloneJosmFiles(directory: string): Promise<void> {
join(directory, "josm", "i18n"),
]);
await cloneCoreSubRepos(join(directory, "josm"), "empty");
await exec("svn", [
"update",
"--set-depth=empty",
join(directory, "josm", "core", "nodist"),
]);
await exec("svn", [
"update",
join(directory, "josm", "core", "ivy.xml"),
Expand Down

0 comments on commit d0176d6

Please sign in to comment.