dustinlyons / nixos-config

General purpose Nix configuration for macOS / NixOS with starter templates + step-by-step guides ✨

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix chmod command in README

ismailbay opened this issue · comments

Chained chmod commands are broken:

current:
chmod +x apps/aarch64-darwin/apply && chmod +x apps/aarch64-darwin/build chmod +x apps/aarch64-darwin/build-switch

should:
chmod +x apps/aarch64-darwin/apply && chmod +x apps/aarch64-darwin/build && chmod +x apps/aarch64-darwin/build-switch

see ampersands between the second and the third chmod.