-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added script to remove unnecessary scripts after template setup
- Loading branch information
Luca Van Zelst
committed
Oct 10, 2023
1 parent
89d4c3a
commit ebe3dbe
Showing
3 changed files
with
15 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
echo "Remove github workflows" | ||
rm -rf .github | ||
|
||
echo "Remove rename project scripts" | ||
rm tool/rename_project.sh | ||
rm tool/dart_tool/rename_project.dart | ||
|
||
echo "Remove strip boilerplate scripts" | ||
rm tool/strip_boilerplate_project.sh | ||
rm tool/dart_tool/strip_boilerplate_project.dart | ||
|
||
echo "Remove self" | ||
rm tool/remove_template_setup_scripts.sh |
File renamed without changes.