Skip to content

Commit

Permalink
change quotes to single
Browse files Browse the repository at this point in the history
  • Loading branch information
tuky191 committed Oct 30, 2024
1 parent b18ba0a commit 2c6a418
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions examples/example.just
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ version-check:
# Runs an example that prompts the user for a description of their post.
[no-cd]
ig-post-planner:
@__import__('os').system("just containers check && docker exec -it examples /bin/bash -c 'source .venv/bin/activate && python examples/main.py ig_post_planner'")
@__import__('os').system("just containers check")
@__import__('os').system("docker exec -it examples /bin/bash -c \"source .venv/bin/activate && python examples/main.py ig_post_planner\"")

# Runs an example that prompts the user for description of their trip.
[no-cd]
trip-planner:
@__import__('os').system("just containers check && docker exec -it examples /bin/bash -c 'source .venv/bin/activate && python examples/main.py trip_planner'")
@__import__('os').system("just containers check")
@__import__('os').system("docker exec -it examples /bin/bash -c \"source .venv/bin/activate && python examples/main.py trip_planner\"")

# Runs an example that prompts the user for description of their cluster.
[no-cd]
cli-cluster:
@__import__('os').system("just containers check && docker exec -it examples /bin/bash -c 'source .venv/bin/activate && python examples/main.py cli_cluster'")
@__import__('os').system("just containers check")
@__import__('os').system("docker exec -it examples /bin/bash -c \"source .venv/bin/activate && python examples/main.py cli_cluster\"")

0 comments on commit 2c6a418

Please sign in to comment.