Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
rymsha committed Jul 20, 2023
1 parent f4178f9 commit 02c5eef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static void main( String[] args )
{
final String name = versionJson.getCheckout();
LOGGER.info( "Checking out version [{}]", name );
git.checkout().setForced( true ).setCreateBranch( true ).setForceRefUpdate( true ).setName( name ).call();
git.checkout().setAllPaths( true ).setForced( true ).setCreateBranch( true ).setForceRefUpdate( true ).setStartPoint( name ).setName( name ).call();
final Path adocBuildPath = Path.of( "build", "docs", versionJson.getLabel() );
Files.createDirectories( adocBuildPath );
LOGGER.info( "Copying docs from [{}] to [{}]", docsPath, adocBuildPath );
Expand Down

0 comments on commit 02c5eef

Please sign in to comment.