mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-15 00:51:21 +01:00
some Unix-like operating systems, namely Alpine, don't come with bash preinstalled. scripts in the lib-src/ directory were left untouched. Signed-off-by: Sol Fisher Romanoff <sol@solfisher.com>
6 lines
62 B
Bash
Executable File
6 lines
62 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in *.po; do
|
|
sed -i '/^Project/d' $i
|
|
done
|