mirror of
https://github.com/zigzap/zap.git
synced 2025-10-21 07:34:08 +00:00
17 lines
555 B
Bash
Executable file
17 lines
555 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# This handles cleanup operations and boiler-plate code and it is executed after downloading a copy of the latest release.
|
|
#
|
|
# Since the version of the script executed is the version included in the release, it is safe to change between releases.
|
|
rm -R src 2>/dev/null
|
|
rm -R docs 2>/dev/null
|
|
rm -R tests 2>/dev/null
|
|
rm -R scripts/new 2>/dev/null
|
|
rm Doxyfile 2>/dev/null
|
|
rm CMakeLists.txt 2>/dev/null
|
|
rm *.md 2>/dev/null
|
|
rm LICENSE 2>/dev/null
|
|
rm NOTICE 2>/dev/null
|
|
mv ./examples/boiler_plate/* ./
|
|
rm -R ./examples/boiler_plate 2>/dev/null
|
|
|