File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- ./gradlew server:imageBuild -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.container-image.name=server-native
2
+ SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
3
+ pushd $SCRIPT_DIR /..
4
+ nix-shell --run ' ./gradlew server:app:imageBuild -Dquarkus.package.type=native -Dquarkus.native.container-build=true -Dquarkus.container-image.name=server-native'
5
+ popd
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
3
+ pushd $SCRIPT_DIR /..
4
+ nix-shell --run ' ./gradlew docsite:npm_run_start'
5
+ popd
Original file line number Diff line number Diff line change
1
+ with ( import <nixpkgs> { } ) ;
2
+ mkShell {
3
+ buildInputs = [
4
+ jdk11
5
+ ] ;
6
+ }
You can’t perform that action at this time.
0 commit comments