File tree Expand file tree Collapse file tree 4 files changed +54
-4
lines changed Expand file tree Collapse file tree 4 files changed +54
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66 id " edu.wpi.first.GradleRIO" version " 2023.1.1"
77}
88
9- version = " 23.0.1-SNAPSHOT "
9+ version = " 23.0.0 "
1010
1111sourceCompatibility = JavaVersion . VERSION_11
1212targetCompatibility = JavaVersion . VERSION_11
Original file line number Diff line number Diff line change 1+ {
2+ description = "Dev shell for robot" ;
3+
4+ inputs =
5+ {
6+ nixpkgs . url = "github:nixos/nixpkgs/nixos-unstable" ;
7+ } ;
8+
9+ outputs = { self , nixpkgs } :
10+ let
11+ pkgs = nixpkgs . legacyPackages . aarch64-darwin ;
12+ pkgs-x86 = nixpkgs . legacyPackages . x86_64-darwin ;
13+ in
14+ {
15+
16+ devShells . aarch64-darwin . default = pkgs . mkShell {
17+ nativeBuildInputs = with pkgs ; [
18+ jdk17_headless
19+ ] ;
20+ } ;
21+
22+ } ;
23+ }
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ rm -rf $STAGE_DIR
1111mkdir -p $STAGE_DIR /usr/local/lib
1212mkdir -p $STAGE_DIR /usr/local/bin
1313
14- cp -c $TCT_DIR /build/libs/tct-$VERSION .jar $STAGE_DIR /usr/local/lib/tct.jar
15- cp -c $TCT_DIR /script/tct $STAGE_DIR /usr/local/bin/tct
14+ cp $TCT_DIR /build/libs/tct-$VERSION .jar $STAGE_DIR /usr/local/lib/tct.jar
15+ cp $TCT_DIR /script/tct $STAGE_DIR /usr/local/bin/tct
1616
1717# tar staged files
1818rm -rf $PAYLOAD_DIR
@@ -29,7 +29,7 @@ echo ""
2929END
3030
3131chmod +x $PAYLOAD_DIR /installer
32- tar -C $PAYLOAD_DIR --options " gzip:compression-level=9 " - c -z -f payload.tgz files.tar installer
32+ tar -C $PAYLOAD_DIR -c -z -f payload.tgz files.tar installer
3333
3434# tar and compress payload
3535cat << 'DECOMPRESS_END ' > $INSTALLER
You can’t perform that action at this time.
0 commit comments