Skip to content

Commit

Permalink
Fix tests of docker image and Update Nu LICENSE (nushell#15015)
Browse files Browse the repository at this point in the history
<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx

you can also mention related issues, PRs or discussions!
-->

# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.

Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->

- Fix docker image tests failure for [nightly
build](https://github.com/nushell/nightly/actions/runs/13150680863) and
[release
build](https://github.com/nushell/nightly/actions/runs/13156381344). I
have test them locally to make sure it works
- Update Nushell LICENSE by the way
  • Loading branch information
hustcer authored Feb 5, 2025
1 parent 803a348 commit 192ee59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 - 2023 The Nushell Project Developers
Copyright (c) 2019 - 2025 The Nushell Project Developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions docker/test_docker.nu
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@ def "test config initialised" [] {
let env_size = $files | where file == "env.nu" | get size | first
let config_size = $files | where file == "config.nu" | get size | first

assert greater $env_size 1KiB
assert greater $config_size 1KiB
assert greater $env_size 300B
assert greater $config_size 350B
}

0 comments on commit 192ee59

Please sign in to comment.