Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor filesystem #306

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
Next Next commit
Remove all .imports
Seriously, this was really cluttering the repo
cruglet committed Dec 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit ad20538ba92fe7bd7f27c4a0c4bdb87f10c4fe5a
15 changes: 15 additions & 0 deletions cleanfiles.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Check if a directory is provided as an argument
if [ -z "$1" ]; then
echo "Usage: $0 <directory>"
exit 1
fi

# Assign the provided directory to a variable
TARGET_DIR="$1"

# Find and remove all files with the .import extension
find "$TARGET_DIR" -type f -name "*.import" -exec rm -v {} \;

echo "All .import files have been removed from $TARGET_DIR."
37 changes: 0 additions & 37 deletions game/classes/dejitter_group/dejitter_group.svg.import

This file was deleted.

34 changes: 0 additions & 34 deletions game/locale/fonts/bylight/bylight.otf.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/pipescript/pipescript_blue.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/pipescript/pipescript_blue.png.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/pipescript/pipescript_green.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/pipescript/pipescript_green.png.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/pipescript/pipescript_pink.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/pipescript/pipescript_pink.png.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/pipescript/pipescript_red.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/pipescript/pipescript_red.png.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/pipescript/pipescript_yellow.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/pipescript/pipescript_yellow.png.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/red/gui_red.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/red/gui_red.png.import

This file was deleted.

34 changes: 0 additions & 34 deletions game/locale/fonts/sunbeam/sunbeam.otf.import

This file was deleted.

17 changes: 0 additions & 17 deletions game/locale/fonts/white/gui_white.fnt.import

This file was deleted.

3 changes: 0 additions & 3 deletions game/locale/fonts/white/gui_white.png.import

This file was deleted.

19 changes: 0 additions & 19 deletions game/music/01 Welcome to Super Mario 63 Redux!.mp3.import

This file was deleted.

19 changes: 0 additions & 19 deletions game/music/02 Start at the Beginning.mp3.import

This file was deleted.

19 changes: 0 additions & 19 deletions game/music/04 Learning the Ropes.mp3.import

This file was deleted.

19 changes: 0 additions & 19 deletions game/music/09 Peach_s Castle Ground Floor.mp3.import

This file was deleted.

19 changes: 0 additions & 19 deletions game/music/10 Peach_s Castle Basement.mp3.import

This file was deleted.

19 changes: 0 additions & 19 deletions game/music/11 Peach_s Castle Upper Floors.mp3.import

This file was deleted.

Loading