| #!/bin/bash | |
| # Copyright 2023 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # | |
| # A tool which will prepare the users development environment | |
| set -e | |
| main() { | |
| local scripts_dir | |
| scripts_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| "${scripts_dir}/bazel" run "@fuchsia_sdk//fuchsia/private/workflows:work_on" -- "$@" | |
| } | |
| main "$@" |