Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Run Checks
id: checks
run: |
. <(curl -Ls https://s.defang.io/install)
eval "$(curl -fsSL s.defang.io/install)"
./scripts/check-sample-files.sh > checklist.txt
./scripts/check-modified-samples.sh > modified.txt
echo "@@ MODIFIED @@"
Expand All @@ -31,7 +31,7 @@ jobs:
# once we figure out how to prevent it from erroring on warnings.
# - name: Validate Compose Files with Defang CLI
# run: |
# . <(curl -Ls https://s.defang.io/install)
# eval "$(curl -fsSL s.defang.io/install)"
# cat modified.txt | xargs -n1 defang compose config -C > /dev/null

- name: Add checklist to PR description
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ brew install defang-io/defang/defang
You can install the Defang CLI using a bash script. Just run the following command in your terminal:

```bash
. <(curl -Ls https://s.defang.io/install)
eval "$(curl -fsSL s.defang.io/install)"
```

The script will try to download the appropriate binary for your operating system and architecture, add it to `~/.local/bin`, and add `~/.local/bin` to your `PATH` if it's not already there, with your permission. If you do not provide permission it will print an appropriate instruction for you to follow to add it manually. You can also customize the installation directory by setting the `INSTALL_DIR` environment variable before running the script.
Expand Down
2 changes: 1 addition & 1 deletion samples/vllm/ui/src/app/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ brew install defang-io/defang/defang
You can install the Defang CLI using a bash script. Just run the following command in your terminal:

```bash
. <(curl -Ls https://s.defang.io/install)
eval "$(curl -fsSL s.defang.io/install)"
```

The script will try to download the appropriate binary for your operating system and architecture, add it to `~/.local/bin`, and add `~/.local/bin` to your `PATH` if it's not already there, with your permission. If you do not provide permission it will print an appropriate instruction for you to follow to add it manually. You can also customize the installation directory by setting the `INSTALL_DIR` environment variable before running the script.
Expand Down
Loading