We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d061d7e commit 5607be4Copy full SHA for 5607be4
assets/nix/run.sh
@@ -192,11 +192,19 @@ doorstop_bool() {
192
# Read from command line
193
while :; do
194
case "$1" in
195
- --doorstop_enabled)
+ --doorstop_enabled) # For backwards compatibility. Renamed to --doorstop-enabled
196
enabled="$(doorstop_bool "$2")"
197
shift
198
;;
199
- --doorstop_target_assembly)
+ --doorstop_target_assembly) # For backwards compatibility. Renamed to --doorstop-target-assembly
200
+ target_assembly="$2"
201
+ shift
202
+ ;;
203
+ --doorstop-enabled)
204
+ enabled="$(doorstop_bool "$2")"
205
206
207
+ --doorstop-target-assembly)
208
target_assembly="$2"
209
210
0 commit comments