Skip to content

Commit

Permalink
bugfix justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bohendo committed Mar 13, 2024
1 parent cfe3208 commit 1dbab0f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ build:

install:
nix build
echo nix profile remove $(shell nix profile list | grep cloudexec | cut -d " " -f 1)
nix profile remove $(shell nix profile list | grep cloudexec | cut -d " " -f 1)
echo nix profile remove $(nix profile list | grep cloudexec | cut -d " " -f 1)
nix profile remove $(nix profile list | grep cloudexec | cut -d " " -f 1)
echo nix profile install ./result
nix profile install ./result

launch-example:
cd example && cloudexec launch

0 comments on commit 1dbab0f

Please sign in to comment.