Skip to content

Commit

Permalink
Fix string quoting in conan commands of ci tutorial (#173)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Zoido <mrgalleta@gmail.com>
amachado-pie and czoido authored Jan 20, 2025
1 parent 9308b27 commit 2f0988e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/game/project_setup.py
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ def project_setup():
# and 2 consuming applications, everything with version ranges
print("- Setup the project initial state -")
run('conan remove "*" -c') # Make sure no packages from last run
run("conan remote remove *")
run('conan remote remove "*"')
run("conan profile detect -f")
print("Cleaning server repos contents")
for repo in (PRODUCTS, DEVELOP, PACKAGES):
@@ -84,10 +84,10 @@ def project_setup():
run(f'conan upload "*" -r={DEVELOP} -c')
run('conan remove "*" -c') # Make sure no packages from last run

run('conan remote disable *')
run('conan remote disable "*"')
run(f'conan remote enable {DEVELOP}')
print(run("conan remote list"))
print(run("conan list *"))
print(run('conan list "*"'))


if __name__ == "__main__":

0 comments on commit 2f0988e

Please sign in to comment.