Skip to content

Commit

Permalink
Fix error message (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
shilgapira authored Oct 6, 2024
1 parent 6c76e0d commit ec27cdb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/export/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ inputs:
default: '.'
descopecli_version:
description: 'The version of the descope CLI tool to use'
default: 'v0.8.9'
default: 'v0.8.10'
descope_base_url:
description: 'The base URL used to communicate with Descope servers (for troubleshooting purposes)'

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/import/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ inputs:
type: boolean
descopecli_version:
description: 'The version of the descope CLI tool to use'
default: 'v0.8.9'
default: 'v0.8.10'
descope_base_url:
description: 'The base URL used to communicate with Descope servers (for troubleshooting purposes)'

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ author: 'Descope'
inputs:
version:
description: 'The version of the descope CLI tool to use'
default: 'v0.8.9'
default: 'v0.8.10'

runs:
using: 'composite'
Expand Down
2 changes: 1 addition & 1 deletion shared/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func createDescopeClient(args []string, project bool) (*client.DescopeClient, er
return nil, errors.New("the " + descope.EnvironmentVariableProjectID + " environment variable must be set")
}
if !strings.HasPrefix(config.ProjectID, "P") {
return nil, errors.New("the " + descope.EnvironmentVariableManagementKey + " environment variable must be a valid projectId")
return nil, errors.New("the " + descope.EnvironmentVariableProjectID + " environment variable must be a valid projectId")
}
}

Expand Down

0 comments on commit ec27cdb

Please sign in to comment.