Skip to content

Commit 73b2d12

Browse files
Update eg005CreateUploadRequest.sh
Signed-off-by: CassandraLoewen <[email protected]>
1 parent 13c61b5 commit 73b2d12

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/Workspaces/eg005CreateUploadRequest.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Send an Workspace Envelope with Recipient Info
2+
# Create a workspace upload request
33
#
44
# Check that we're in a bash shell
55
if [[ $SHELL != *"bash"* ]]; then
@@ -9,14 +9,14 @@ fi
99
# Check that a workspace exists
1010
workspace_id=$(cat config/WORKSPACE_ID)
1111
if [ -z "$workspace_id" ]; then
12-
echo "Please run the create Workspace example before running this code."
12+
echo "Please run the Create Workspace example before running this code."
1313
exit 0
1414
fi
1515

1616
# Check that a workspace creator ID exists
1717
workspace_creator_id=$(cat config/WORKSPACE_CREATOR_ID)
1818
if [ -z "$workspace_creator_id" ]; then
19-
echo "No creator ID was recorded. Please run the create Workspace example before running this code."
19+
echo "No creator ID was recorded. Please run the Create Workspace example before running this code."
2020
exit 0
2121
fi
2222

@@ -107,3 +107,4 @@ rm "$request_data"
107107

108108

109109

110+

0 commit comments

Comments
 (0)