We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5775f5e commit c502754Copy full SHA for c502754
micropython/build.sh
@@ -10,9 +10,14 @@ REPO=micropython
10
FULLNAME=micropython-${VERSION}.tar.xz
11
OUTPUT=$2/${FULLNAME}
12
13
-REVISION="micropython-${VERSION}"
14
LAST_REVISION="${3:-}"
15
+if [[ $VERSION == 'preview' ]]; then
16
+ REVISION="micropython-preview-$(date +%Y%m%d)"
17
+else
18
+ REVISION="micropython-${VERSION}"
19
+fi;
20
+
21
DEST="/opt/compiler-explorer/${REVISION}"
22
23
initialise "${REVISION}" "${OUTPUT}" "${LAST_REVISION}"
0 commit comments