Skip to content

Commit

Permalink
More change for relative workdir
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Apr 4, 2024
1 parent 6d2d549 commit 565d05b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def getBuildFactoryPreTest(build_type="RelWithDebInfo", additional_args=""):
f_quick_build.addStep(
steps.ShellCommand(
command=util.Interpolate(
"tar -xzf /mnt/packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz --strip-components=1"
"tar -xzf ./packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz --strip-components=1"
)
)
)
Expand Down Expand Up @@ -420,7 +420,7 @@ def getRpmAutobakeFactory(mtrDbPool):
f_rpm_autobake.addStep(
steps.ShellCommand(
command=util.Interpolate(
"tar -xzf /mnt/packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz --strip-components=1"
"tar -xzf ./packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz --strip-components=1"
)
)
)
Expand Down
2 changes: 1 addition & 1 deletion master-nonlatent/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ f_aix.addStep(downloadSourceTarball())
f_aix.addStep(
steps.ShellCommand(
command=util.Interpolate(
"tar -xzf /mnt/packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz"
"tar -xzf ./packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz"
)
)
)
Expand Down
2 changes: 1 addition & 1 deletion master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ f_deb_autobake.addStep(downloadSourceTarball())
f_deb_autobake.addStep(
steps.ShellCommand(
command=util.Interpolate(
"tar -xzf /mnt/packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz --strip-components=1"
"tar -xzf ./packages/%(prop:tarbuildnum)s_%(prop:mariadb_version)s.tar.gz --strip-components=1"
)
)
)
Expand Down

0 comments on commit 565d05b

Please sign in to comment.