Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
Nosheen Adil committed Nov 15, 2024
1 parent 950db2e commit 4f15eef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jenkins/pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ def run(os, python_version, deploy = false) {
def run_all(os, deploy = false) {
// The Jenkinsfile for the MacOS Development Builds pipeline.

run_command("git config -f .gitmodules submodule.isxcore.url https://github.com/inscopix/isxcore.git")
run_command("git config -f .git/config submodule.isxcore.url https://github.com/inscopix/isxcore.git")
run_command("git submodule sync")
run_command("git submodule update --init --remote")
run_command("git config -f .gitmodules submodule.isxcore.url https://github.com/inscopix/isxcore.git", os)
run_command("git config -f .git/config submodule.isxcore.url https://github.com/inscopix/isxcore.git", os)
run_command("git submodule sync", os)
run_command("git submodule update --init --remote", os)

stage("Setup") {
run_command("make setup REMOTE_DIR=${IDPS_REMOTE_EXT_DIR} REMOTE_LOCAL_DIR=${IDPS_REMOTE_EXT_COPY_DIR}", os)
Expand Down

0 comments on commit 4f15eef

Please sign in to comment.