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