diff --git a/README.md b/README.md index 1fbd9af..fd6289c 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,6 @@ Tool to help keep a range of projects up to date with git version control, and a # Installation -## Install using bun - -Requires [bun](https://bun.sh/) version 1.0.0 or higher - -``` -bun install -g @cego/gitte -``` - ## Install using npm Requires npm and node version 16 or higher. diff --git a/bun.lockb b/bun.lockb deleted file mode 100755 index 3b665d5..0000000 Binary files a/bun.lockb and /dev/null differ diff --git a/src/toggle_projects.ts b/src/toggle_projects.ts index 6e519fe..5ecb83f 100644 --- a/src/toggle_projects.ts +++ b/src/toggle_projects.ts @@ -31,7 +31,7 @@ export function logProjectStatus(cfg: Config): void { Object.entries(cfg.projects).forEach(([projectName, project]) => { let enabled = !project.defaultDisabled; - if (toggledProjects[projectName]) { + if (projectName in toggledProjects) { enabled = toggledProjects[projectName]; }