mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
ead4517cc3
Remove the old update scripts so we can use ./mach vendor to vendor it. Differential Revision: https://phabricator.services.mozilla.com/D163970
7 lines
58 B
Bash
Executable File
7 lines
58 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for i in *.c; do
|
|
mv "$i" "${i}pp"
|
|
done |