diff --git a/gitlab-conversion.py b/gitlab-conversion.py index 21a1d67bbe..b961736d64 100755 --- a/gitlab-conversion.py +++ b/gitlab-conversion.py @@ -31,9 +31,8 @@ targetdir = 'target' if len(sys.argv) > 1: targetdir = sys.argv[1] -shutil.rmtree(os.path.join(targetdir, 'images')) -shutil.rmtree(os.path.join(targetdir, 'keycloak-images')) -shutil.rmtree(os.path.join(targetdir, 'rhsso-images')) +if os.path.exists(targetdir): + shutil.rmtree(targetdir) shutil.copytree('images',os.path.join(targetdir, 'images')) shutil.copytree('keycloak-images',os.path.join(targetdir, 'keycloak-images')) shutil.copytree('rhsso-images',os.path.join(targetdir, 'rhsso-images')) diff --git a/topics/first-realm/account.adoc b/topics/first-realm/account.adoc index 4d6fc89cdb..52633ccc1a 100755 --- a/topics/first-realm/account.adoc +++ b/topics/first-realm/account.adoc @@ -1,5 +1,5 @@ -== User Account Service +=== User Account Service After creating the user, logout of the management console by clicking the right hand drop down menu and selecting `Sign Off`. Next, login to the User Account Service of your `demo` realm with the user you just created by clicking this link: diff --git a/topics/secure-jboss-app/subsystem.adoc b/topics/secure-jboss-app/subsystem.adoc index 39a33155cd..4a955d8f31 100644 --- a/topics/secure-jboss-app/subsystem.adoc +++ b/topics/secure-jboss-app/subsystem.adoc @@ -45,6 +45,6 @@ Change the `WAR MODULE NAME` text to be `vanilla` as follows: ---- Reboot your application's server and now when visit http://localhost:8080/vanilla and hit the login button, you should -get the {{book.project.name}} login page. You can log in using the user you created in the <> chapter. +get the {{book.project.name}} login page. You can log in using the user you created in the <> chapter.