13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -x
|
|
|
|
git rm generators/chipyard/src/main/scala/config/RocketSha3Configs.scala
|
|
git rm -rf generators/sha3
|
|
|
|
for p in scripts/tutorial-patches/*.patch
|
|
do
|
|
echo "Applying tutorial patch $p"
|
|
git apply $p
|
|
done
|