Skip to content

Commit 88054fa

Browse files
committed
[ci skip] Give all scripts +x permissions
1 parent 0308350 commit 88054fa

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

scripts/build-util.sh

100644100755
File mode changed.

scripts/repo-clean.sh

100644100755
Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ set -e
55
# this should be run from chipyard repo top
66
RDIR=$(git rev-parse --show-toplevel)
77

8-
cd $RDIR/libgloss
9-
rm -rf build.log
10-
11-
cd ../riscv-tools/riscv-isa-sim/
12-
rm -rf build.log
13-
14-
cd ../riscv-pk
15-
rm -rf build.log
16-
17-
cd ../riscv-tests
18-
rm -rf build.log
19-
20-
cd $RDIR/tools/api-config-chipsalliance
21-
git config --local status.showUntrackedFiles no
8+
rm -rf $RDIR/toolchains/libgloss/build.log
9+
rm -rf $RDIR/toolchains/riscv-tools/riscv-isa-sim/build.log
10+
rm -rf $RDIR/toolchains/riscv-tools/riscv-pk/build.log
11+
rm -rf $RDIR/toolchains/riscv-tools/riscv-tests/build.log
12+
rm -rf $RDIR/toolchains/esp-tools/riscv-isa-sim/build.log
13+
rm -rf $RDIR/toolchains/esp-tools/riscv-pk/build.log
14+
rm -rf $RDIR/toolchains/esp-tools/riscv-tests/build.log
15+
(
16+
pushd $RDIR/generators/constellation
17+
if [ -d espresso ]
18+
then
19+
git submodule deinit espresso
20+
fi
21+
popd
22+
)
23+
(
24+
pushd $RDIR/tools/api-config-chipsalliance
25+
git config --local status.showUntrackedFiles no
26+
popd
27+
)

scripts/utils.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)