From bd740e37a54ae95d7f22cb0d4e0d7d53465f3e10 Mon Sep 17 00:00:00 2001 From: lurk101 Date: Tue, 22 Oct 2024 20:46:24 -0400 Subject: [PATCH] Update release build to accomodate new build platforms --- README.md | 2 +- release-build | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 66adcc1..e758056 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ the [Squint] project. - Native machine code generation for CM0 and CM33 by Jean M. Cyr. - Console command recall and auto completion by Eric Olson. -[What's new] in pshell +[What's new] in pshell v2.1.5 About the compiler, briefly: diff --git a/release-build b/release-build index 6c7cbf3..302199c 100755 --- a/release-build +++ b/release-build @@ -12,9 +12,9 @@ function build() { else CONS=uart fi - cp pshell.elf ../pico.pshell_$CONS.elf - cp pshell.bin ../pico.pshell_$CONS.bin - cp pshell.uf2 ../pico.pshell_$CONS.uf2 + cp pshell.elf ../$2.pshell_$CONS.elf + cp pshell.bin ../$2.pshell_$CONS.bin + cp pshell.uf2 ../$2.pshell_$CONS.uf2 rm -rf * }