mirror of
https://github.com/izzy2lost/nix.git
synced 2026-03-10 12:35:57 -07:00
9 lines
344 B
Bash
Executable File
9 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
touch "$TEST_ROOT/foo" -t 202211111111
|
|
# We only check whether 2022-11-1* **:**:** is the last modified date since
|
|
# `lastModified` is transformed into UTC in `builtins.fetchTarball`.
|
|
[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$TEST_ROOT/foo\").lastModifiedDate")" =~ 2022111.* ]]
|