Skip to content

Commit 4185904

Browse files
committed
indents
1 parent 7878a58 commit 4185904

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/app-service/tutorial-webjobs.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -269,24 +269,24 @@ public class HelloWorld {
269269
270270
1. The `run.sh` script runs a jar with the name that set in the Maven configuration. This script will run when our WebJob is triggered.
271271
272-
```bash
273-
java -jar webjob-artifact-1.0.0.jar
274-
```
272+
```bash
273+
java -jar webjob-artifact-1.0.0.jar
274+
```
275275
276276
1. Next, we compile the Java project to produce the executable `.jar`. There are multiple ways to do this, but for this example, we’ll use Maven. Run the following commands from the `project/` directory:
277277
278-
```bash
279-
mvn install
280-
mvn package
281-
```
278+
```bash
279+
mvn install
280+
mvn package
281+
```
282282
283283
The jar files will be located at `project/target/webjob-artifact-1.0.0.jar` after a successful build.
284284
285285
1. Move the jar file to the root of the git repo with `mv project/target/webjob-artifact-1.0.0.jar .` Next you package our application as a `.zip` file.
286286
287-
```bash
288-
zip webjob.zip run.sh webjob-artifact-1.0.0.jar
289-
```
287+
```bash
288+
zip webjob.zip run.sh webjob-artifact-1.0.0.jar
289+
```
290290
291291
## Create a scheduled WebJob on Azure
292292
@@ -385,7 +385,7 @@ php -f webjob.php
385385
386386
Select the log for the WebJob you created earlier.
387387
388-
:::image type="content" source="media/quickstart-webjobs/review-webjobs-logs.png" alt-text="Screenshot that shows how to view WebJob logs in an App Service app in the portal (scheduled WebJob).":::
388+
:::image type="content" source="media/quickstart-webjobs/review-webjobs-logs.png" alt-text="Screenshot that shows how to view WebJob logs in an App Service app in the portal (scheduled WebJob).":::
389389
390390
391391
The output should look similar to the following.
@@ -396,7 +396,7 @@ The output should look similar to the following.
396396
397397
To remove the WebJob, select the WebJob in the portal and select `Delete`.
398398
399-
:::image type="content" source="media/quickstart-webjobs/delete-webjobs.png" alt-text="Screenshot showing how you can delete a WebJob in the portal.":::
399+
:::image type="content" source="media/quickstart-webjobs/delete-webjobs.png" alt-text="Screenshot showing how you can delete a WebJob in the portal.":::
400400
401401
## <a name="NextSteps"></a> Next steps
402402

0 commit comments

Comments
 (0)