Files
RustPython/scripts/redox/uncomment-cargo.sh
2019-11-25 11:04:37 -06:00

16 lines
211 B
Bash
Executable File

#!/bin/bash
set -e
cargo=${1:-Cargo.toml}
tmpfile=$(mktemp)
awk '
/REDOX START/{redox=1; print; next}
/REDOX END/{redox=0}
{if (redox) sub(/^#\s*/, ""); print}
' "$cargo" >"$tmpfile"
mv "$tmpfile" "$cargo"