2024-05-28 19:43:04 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-05-09 20:33:09 +03:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
# Test symlinks in zip files (#10649).
|
|
|
|
path=$(nix flake prefetch --json file://$(pwd)/tree.zip | jq -r .storePath)
|
|
|
|
[[ $(cat $path/foo) = foo ]]
|
|
|
|
[[ $(readlink $path/bar) = foo ]]
|