try: formatting

This commit is contained in:
Kuoi 2023-06-15 02:20:37 +08:00
parent 0513c8a647
commit 59c2cb1f52

View file

@ -20,9 +20,8 @@ sub system_setup {
}
sub transfer_docker {
my ($subdir, $dest_dir) = @_;
my $path = $dest_dir . $subdir;
system('docker', 'cp', $path, "bio:/root/");
my ($path) = @_;
system('docker', 'cp', $path, 'bio:/root/');
}
sub prepare_files {
@ -140,8 +139,8 @@ run_docker_container();
system_setup();
# transfer
transfer_docker('/bio', $abpath);
transfer_docker('/bio-wayfire', $abpath);
transfer_docker( $abpath . '/bio' );
transfer_docker( $abpath . '/bio-wayfire' );
# Call prepare_files function before copying templates
prepare_files( $abpath );