Skip to content

Commit d491c62

Browse files
committed
updates all references to rad-bicep to bicep
Signed-off-by: Nell Shamrell <nellshamrell@gmail.com>
1 parent 854e31e commit d491c62

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/scripts/validate_bicep.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
# set the bicep binary name based on the OS
88
if os.name == 'nt':
9-
bicep_bin = 'rad-bicep.exe'
9+
bicep_bin = 'bicep.exe'
1010
home_path = os.environ['USERPROFILE']
1111
else:
12-
bicep_bin = 'rad-bicep'
12+
bicep_bin = 'bicep'
1313
home_path = os.environ['HOME']
1414

1515
# set the default Bicep path based on the runner

.github/workflows/validate-bicep.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545

4646
- name: Setup and verify bicep CLI
4747
run: |
48-
curl -Lo rad-bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
49-
chmod +x ./rad-bicep
50-
./rad-bicep --version
48+
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
49+
chmod +x ./bicep
50+
./bicep --version
5151
5252
- name: Verify Bicep files
5353
run: python ./.github/scripts/validate_bicep.py

docs/content/guides/deploy-apps/howto-deploy/howto-deploy-cicd/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Ensure the service principal created above has the proper RBAC assignment to dow
110110
Next, download the latest `rad` CLI release and setup your workspace:
111111

112112
```yml
113-
- name: Download rad CLI and rad-bicep
113+
- name: Download rad CLI and bicep
114114
run: |
115115
wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash
116116
./rad bicep download

docs/content/guides/tooling/rad-cli/overview/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ By default, the rad CLI installation script installs the rad CLI to `%LOCALAPPDA
6868

6969
## Configuration
7070

71-
The rad CLI stores its configuration, the rad-Bicep compiler, and other configuration under the `rad` directory.
71+
The rad CLI stores its configuration, the Bicep compiler, and other configuration under the `rad` directory.
7272

7373
{{< tabs "macOS/Linux/WSL" "Windows" >}}
7474

@@ -90,9 +90,9 @@ When the rad CLI runs commands, it will use the configuration in the `config.yam
9090

9191
For more information, refer to the [`config.yaml` reference documentation]({{< ref "/reference/config" >}}).
9292

93-
### `rad-bicep` compiler
93+
### `bicep` compiler
9494

95-
The rad CLI uses the Bicep compiler to compile Bicep files to JSON templates. The Bicep compiler is stored as `/bin/rad-bicep` within your configuration directory.
95+
The rad CLI uses the Bicep compiler to compile Bicep files to JSON templates. The Bicep compiler is stored as `/bin/bicep` within your configuration directory.
9696

9797
## Reference documentation
9898

0 commit comments

Comments
 (0)