We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 307f1fc commit a5c42a3Copy full SHA for a5c42a3
modules/WorkspaceCreator.pm
@@ -1802,7 +1802,8 @@ sub generate_project_files_fork {
1802
}
1803
1804
$self->{'cacheok'} = $cacheok;
1805
- if ($self->cd($dir)) {
+ my $full = "$cwd/$dir";
1806
+ if ($self->cd($full)) {
1807
if ($self->{'cacheok'} && defined $allprojects{$prkey}) {
1808
1809
$files_written = $allprojects{$prkey};
@@ -1840,8 +1841,7 @@ sub generate_project_files_fork {
1840
1841
## Unable to change to the directory.
1842
## We don't restore the state before we leave,
1843
## but that's ok since we will be exiting soon.
- return 0, $creator, $msg;
1844
-
+ return 0, $creator, "Unable to change directory to $full";
1845
1846
1847
## Return things to the way they were
0 commit comments