diff options
author | Christian Cunningham <cc@localhost> | 2022-04-05 17:14:10 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-05 17:14:10 -0700 |
commit | 2f639629c22a6a5fc47d2c7f2135f46dd04c43ea (patch) | |
tree | 7d5aaebf6295b982a71ab6c5e2bec01c814f69fe | |
parent | def38067a79a9f193658be58705afa9c091013ff (diff) |
Fixed Variable not Expanding
-rw-r--r-- | Common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -148,7 +148,7 @@ test: clean build/kernel.elf @tput setaf 6 2> /dev/null || true; echo Running Tests; tput sgr0 2> /dev/null || true @./tests/run.sh -ifndef $(DISK) +ifndef DISK copy: @tput setaf 1 2> /dev/null || true; echo ERROR: No disk specified!; tput sgr0 2> /dev/null || true else |