Skip to content

Commit

Permalink
try using plain source-path
Browse files Browse the repository at this point in the history
  • Loading branch information
afirth committed Jun 1, 2021
1 parent decdb07 commit 67701e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async function run() {
let cp_options = ( is_dir ) ? { recursive: true, force: true } : {},
iscopied = true,
dest_basepath = toolkit.path.dirname( `${local_path}${workflow_file.dest}` ),
copy_source = ( is_dir ) ? `${toolkit.path.trailingslashit( source_path )}.` : source_path;
copy_source = source_path;

toolkit.log.success( `${relative_path} => ${workflow_file.dest}`, ' ' );

Expand Down Expand Up @@ -170,4 +170,4 @@ async function run() {
} );
}

run();
run();

0 comments on commit 67701e6

Please sign in to comment.