Skip to content

Commit

Permalink
treecompose: Add missing --repo arg
Browse files Browse the repository at this point in the history
So this has been a learning experience, I think what I really
want to do is spin up a container that does all the rpm-ostree stuff
that can be more easily shared across projects so I can use it
for FAHC too and not keep hitting bugs like this.
  • Loading branch information
cgwalters committed May 17, 2018
1 parent 54f3f6b commit 85da0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile.treecompose
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ node(env.NODE) {
sh "ostree --repo=${repo} rev-parse ${ref} > commit.txt"
def commit = readFile('commit.txt');
currentBuild.description = '🆕 commit ' + commit;
sh "rpm-ostree db diff ${commit}^ ${commit}"
sh "rpm-ostree --repo=${repo} db diff ${commit}^ ${commit}"
}

stage("Sync Out") {
Expand Down

0 comments on commit 85da0ae

Please sign in to comment.