Compare commits
3 commits
61d699c236
...
5728a0c1cb
Author | SHA1 | Date | |
---|---|---|---|
5728a0c1cb | |||
8d7119d506 | |||
9fac65087a |
3 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
FROM rust:1-alpine as builder
|
||||
|
||||
RUN rustup default stable
|
||||
RUN rustup default stable-x86_64-unknown-linux-musl
|
||||
RUN apk add --no-cache musl-dev openssl-dev openssl-libs-static pkgconf git
|
||||
|
||||
# Set `SYSROOT` to a dummy path (default is /usr) because pkg-config-rs *always*
|
||||
|
|
|
@ -17,6 +17,7 @@ pub(super) async fn run(
|
|||
action: StackCommand,
|
||||
) -> Result<CommandStatus> {
|
||||
let output = Command::new(arion_bin)
|
||||
.uid(0)
|
||||
.args(action.command())
|
||||
.current_dir(path)
|
||||
.output()
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
color: var(--danger-text);
|
||||
padding: 4px 8px;
|
||||
display: none;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
& noscript {
|
||||
|
|
Reference in a new issue