Skip to content

Commit

Permalink
changing targets to copy and not symlink (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
SequeI authored Sep 5, 2024
1 parent c26e089 commit c8ef5df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tuftool/src/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ impl CreateArgs {

let targets_outdir = &self.outdir.join("targets");
signed_repo
.link_targets(&self.targets_indir, targets_outdir, self.target_path_exists)
.copy_targets(&self.targets_indir, targets_outdir, self.target_path_exists)
.await
.context(error::LinkTargetsSnafu {
indir: &self.targets_indir,
Expand Down
2 changes: 1 addition & 1 deletion tuftool/src/rhtas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl RhtasArgs {
if let Some(path) = target_path {
let targets_outdir = &self.outdir.join("targets");
signed_repo
.link_targets(path, targets_outdir, self.target_path_exists)
.copy_targets(path, targets_outdir, self.target_path_exists)
.await
.context(error::LinkTargetsSnafu {
indir: path,
Expand Down
2 changes: 1 addition & 1 deletion tuftool/src/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl UpdateArgs {
if let Some(ref targets_indir) = self.targets_indir {
let targets_outdir = &self.outdir.join("targets");
signed_repo
.link_targets(targets_indir, targets_outdir, self.target_path_exists)
.copy_targets(targets_indir, targets_outdir, self.target_path_exists)
.await
.context(error::LinkTargetsSnafu {
indir: &targets_indir,
Expand Down

0 comments on commit c8ef5df

Please sign in to comment.