File: dfsh.sh

package info (click to toggle)
pyocd 0.36.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 341,216 kB
  • sloc: xml: 3,682,260; python: 59,213; ansic: 112; makefile: 87; asm: 25; sh: 14
file content (16 lines) | stat: -rwxr-xr-x 221 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

if [ -d ./binaries/ ]; then
	rm -rf ./binaries/
fi

if [ -d ./elf_files/ ]; then
	rm -rf ./elf_files/
fi

if [ -f ./src/gdb_test_program/gdb_test.elf ]; then
	rm ./src/gdb_test_program/gdb_test.elf
fi