Compare commits

...

3 Commits

Author SHA1 Message Date
Hamcha 5728a0c1cb fix: error properly formatted now
Build and push Docker image / build-and-publish (push) Successful in 6m27s Details
2024-03-30 19:49:59 +01:00
Hamcha 8d7119d506 fix: bad idea but it might work 2024-03-30 19:49:49 +01:00
Hamcha 9fac65087a build: get the proper toolchain ahead of time 2024-03-30 19:28:17 +01:00
3 changed files with 3 additions and 1 deletions

View File

@ -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*

View File

@ -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()

View File

@ -25,6 +25,7 @@
color: var(--danger-text);
padding: 4px 8px;
display: none;
white-space: pre;
}
& noscript {