forked from lix-project/lix-installer
Release v0.3.0 (#249)
This commit is contained in:
parent
6ec5080a2f
commit
41fdc2d20e
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -915,7 +915,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "nix-installer"
|
||||
version = "0.2.1-unreleased"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atty",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "nix-installer"
|
||||
description = "The Determinate Nix Installer"
|
||||
version = "0.2.1-unreleased"
|
||||
version = "0.3.0"
|
||||
edition = "2021"
|
||||
resolver = "2"
|
||||
license = "LGPL-2.1"
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
};
|
||||
sharedAttrs = {
|
||||
pname = "nix-installer";
|
||||
version = "0.2.1-unreleased";
|
||||
version = "0.3.0";
|
||||
src = builtins.path {
|
||||
name = "nix-installer-source";
|
||||
path = self;
|
||||
|
|
2
tests/fixtures/linux/linux.json
vendored
2
tests/fixtures/linux/linux.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.2.1-unreleased",
|
||||
"version": "0.3.0",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
2
tests/fixtures/linux/steam-deck.json
vendored
2
tests/fixtures/linux/steam-deck.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.2.1-unreleased",
|
||||
"version": "0.3.0",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
2
tests/fixtures/macos/macos.json
vendored
2
tests/fixtures/macos/macos.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.2.1-unreleased",
|
||||
"version": "0.3.0",
|
||||
"actions": [
|
||||
{
|
||||
"action": {
|
||||
|
|
|
@ -56,7 +56,7 @@ $MaybeInitChoice = switch ($Systemd) {
|
|||
$true { "" }
|
||||
$false { "--init none" }
|
||||
}
|
||||
wsl --distribution $DistroName bash --login -c "/root/.cargo/bin/cargo run --quiet --manifest-path /nix-installer/Cargo.toml -- install linux-multi --no-confirm $MaybeInitChoice"
|
||||
wsl --distribution $DistroName bash --login -c "/root/.cargo/bin/cargo run --quiet --manifest-path /nix-installer/Cargo.toml -- install linux --no-confirm $MaybeInitChoice"
|
||||
if ($LastExitCode -ne 0) {
|
||||
exit $LastExitCode
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue