Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion squashfs/squashfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func ExtractSingleSquash(squashFile string, extractDir string, storageType strin
var uCmd []string
if storageType == "btrfs" {
if which("squashtool") == "" {
return errors.Errorf("must have squashtool (https://github.com/project-stacker/squashfs) to correctly extract squashfs using btrfs storage backend")
return errors.Errorf("must have squashtool (https://github.com/anuvu/squashfs) to correctly extract squashfs using btrfs storage backend")
}

uCmd = []string{"squashtool", "extract", "--whiteouts", "--perms",
Expand Down