diff --git a/README.md b/README.md index 6d69129..578d091 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/configs/.gitkeep b/configs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/scripts/install.sh b/scripts/install.sh index 78b5e93..adb3bbf 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -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"