Skip to content

Commit f6b72f2

Browse files
committed
Merge branch 'master' into feature/remote
2 parents 036a8b2 + e6cc9c7 commit f6b72f2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ There are however situations where we might need to execute a script that is com
440440
We can specify this when executing the script.
441441

442442
```shell
443-
dotnet script -c release foo.csx
443+
dotnet script foo.csx -c release
444444
```
445445

446446
## Team

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44
DOTNET_SCRIPT="$SCRIPT_DIR/build/dotnet-script"

build/install-dotnet-script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
curl -L https://github.com/filipw/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip > dotnet-script.zip
4-
unzip -o dotnet-script.zip -d ./
4+
unzip -o dotnet-script.zip -d ./

0 commit comments

Comments
 (0)