Skip to content

Commit fcc4a52

Browse files
committed
fix: updating Windows CLI commands (see lter/ssecr#62)
1 parent 4f8e44e commit fcc4a52

6 files changed

Lines changed: 13 additions & 15 deletions

File tree

_freeze/create/execute-results/html.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

_freeze/customize/execute-results/html.json

Lines changed: 3 additions & 5 deletions
Large diffs are not rendered by default.

_freeze/deploy/execute-results/html.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

create.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ touch _quarto.yml # <1>
165165
```{r make-yaml_win}
166166
#| eval: false
167167
168-
copy NUL _quarto.yml # <1>
168+
touch _quarto.yml # <1>
169169
```
170170
1. This is CLI-speak for 'create this file'
171171

@@ -237,7 +237,7 @@ touch .nojekyll
237237
```{r no-jekyll_win}
238238
#| eval: false
239239
240-
copy NUL .nojekyll
240+
touch .nojekyll
241241
```
242242

243243
:::

customize.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ touch theme_dark.scss
5555
```{r scss_win}
5656
#| eval: false
5757
58-
copy NUL theme_light.scss
59-
copy NUL theme_dark.scss
58+
touch theme_light.scss
59+
touch theme_dark.scss
6060
```
6161

6262
:::

deploy.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ touch .github/workflows/publish.yml
9898
#| eval: false
9999
100100
mkdir .github # <1>
101-
mkdir .github/workflows
102-
copy NUL .github/workflows/publish.yml
101+
mkdir .github\workflows
102+
touch .github\workflows\publish.yml
103103
```
104104
1. `mkdir` is CLI-speak for 'make this folder'
105105

0 commit comments

Comments
 (0)