Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Spotify Status:
spotless/
├── src/
│ └── patcher.py # Main CLI patcher (installed as `spotless`)
├── configs/ # Configuration templates
├── scripts/
│ ├── install.sh # Installs CLI and applies patches
│ └── uninstall.sh # Restores and removes installed files
Expand Down
Empty file added configs/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ install_patcher() {
mkdir -p "$BIN_DIR"

cp "$PROJECT_DIR/src/patcher.py" "$INSTALL_DIR/"
mkdir -p "$PROJECT_DIR/configs"
cp -r "$PROJECT_DIR/configs" "$INSTALL_DIR/"

chmod +x "$INSTALL_DIR/patcher.py"
Expand Down