mirror of
https://github.com/nushell/nushell
synced 2024-11-11 23:47:07 +00:00
Merge pull request #733 from vsoch/fix/docker-nightly-build
Don't run nu at end of release build
This commit is contained in:
commit
7269cf7427
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ ENV PATH=/root/.cargo/bin:$PATH
|
|||
COPY . /code
|
||||
RUN echo "##vso[task.prependpath]/root/.cargo/bin" && \
|
||||
rustc -Vv && \
|
||||
if $RELEASE; then cargo build --release && cargo run --release; \
|
||||
if $RELEASE; then cargo build --release; \
|
||||
cp target/release/nu /usr/local/bin; \
|
||||
else cargo build; \
|
||||
cp target/debug/nu /usr/local/bin; fi;
|
||||
|
|
Loading…
Reference in a new issue