mirror of https://github.com/databricks/cli.git
53 lines
1.7 KiB
Plaintext
53 lines
1.7 KiB
Plaintext
|
|
>>> EXITCODE=0 errcode $CLI bundle validate
|
|
Executing 'preinit' script
|
|
from myscript.py 0 preinit: hello stdout!
|
|
from myscript.py 0 preinit: hello stderr!
|
|
Executing 'postinit' script
|
|
from myscript.py 0 postinit: hello stdout!
|
|
from myscript.py 0 postinit: hello stderr!
|
|
Name: scripts
|
|
Target: default
|
|
Workspace:
|
|
User: $USERNAME
|
|
Path: /Workspace/Users/$USERNAME/.bundle/scripts/default
|
|
|
|
Validation OK!
|
|
|
|
>>> EXITCODE=1 errcode $CLI bundle validate
|
|
Executing 'preinit' script
|
|
from myscript.py 1 preinit: hello stdout!
|
|
from myscript.py 1 preinit: hello stderr!
|
|
Error: failed to execute script: exit status 1
|
|
|
|
Name: scripts
|
|
|
|
Found 1 error
|
|
|
|
Exit code: 1
|
|
|
|
>>> EXITCODE=0 errcode $CLI bundle deploy
|
|
Executing 'preinit' script
|
|
from myscript.py 0 preinit: hello stdout!
|
|
from myscript.py 0 preinit: hello stderr!
|
|
Executing 'postinit' script
|
|
from myscript.py 0 postinit: hello stdout!
|
|
from myscript.py 0 postinit: hello stderr!
|
|
Executing 'prebuild' script
|
|
from myscript.py 0 prebuild: hello stdout!
|
|
from myscript.py 0 prebuild: hello stderr!
|
|
Executing 'postbuild' script
|
|
from myscript.py 0 postbuild: hello stdout!
|
|
from myscript.py 0 postbuild: hello stderr!
|
|
Executing 'predeploy' script
|
|
from myscript.py 0 predeploy: hello stdout!
|
|
from myscript.py 0 predeploy: hello stderr!
|
|
Error: unable to deploy to /Workspace/Users/$USERNAME/.bundle/scripts/default/state as $USERNAME.
|
|
Please make sure the current user or one of their groups is listed under the permissions of this bundle.
|
|
For assistance, contact the owners of this project.
|
|
They may need to redeploy the bundle to apply the new permissions.
|
|
Please refer to https://docs.databricks.com/dev-tools/bundles/permissions.html for more on managing permissions.
|
|
|
|
|
|
Exit code: 1
|