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]]
|
[[package]]
|
||||||
name = "nix-installer"
|
name = "nix-installer"
|
||||||
version = "0.2.1-unreleased"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atty",
|
"atty",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "nix-installer"
|
name = "nix-installer"
|
||||||
description = "The Determinate Nix Installer"
|
description = "The Determinate Nix Installer"
|
||||||
version = "0.2.1-unreleased"
|
version = "0.3.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
license = "LGPL-2.1"
|
license = "LGPL-2.1"
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
};
|
};
|
||||||
sharedAttrs = {
|
sharedAttrs = {
|
||||||
pname = "nix-installer";
|
pname = "nix-installer";
|
||||||
version = "0.2.1-unreleased";
|
version = "0.3.0";
|
||||||
src = builtins.path {
|
src = builtins.path {
|
||||||
name = "nix-installer-source";
|
name = "nix-installer-source";
|
||||||
path = self;
|
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": [
|
"actions": [
|
||||||
{
|
{
|
||||||
"action": {
|
"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": [
|
"actions": [
|
||||||
{
|
{
|
||||||
"action": {
|
"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": [
|
"actions": [
|
||||||
{
|
{
|
||||||
"action": {
|
"action": {
|
||||||
|
|
|
@ -56,7 +56,7 @@ $MaybeInitChoice = switch ($Systemd) {
|
||||||
$true { "" }
|
$true { "" }
|
||||||
$false { "--init none" }
|
$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) {
|
if ($LastExitCode -ne 0) {
|
||||||
exit $LastExitCode
|
exit $LastExitCode
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue