Skip to content

Commit 9ac0d09

Browse files
authored
Ensure that azure-sdk-tools is part of the packages being installed (#42635)
1 parent 168268b commit 9ac0d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dev_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def select_install_type(pkg, run_develop, exceptions):
7575

7676
packages = {
7777
tuple(os.path.dirname(f).rsplit(os.sep, 1))
78-
for f in glob.glob(os.path.join(root_dir, "sdk/*/azure-*/setup.py")) + glob.glob(os.path.join(root_dir, "tools/azure-*/setup.py"))
78+
for f in glob.glob(os.path.join(root_dir, "sdk/*/azure-*/setup.py")) + glob.glob(os.path.join(root_dir, "eng/tools/azure-*/setup.py"))
7979
}
8080
# [(base_folder, package_name), ...] to {package_name: base_folder, ...}
8181
packages = {package_name: base_folder for (base_folder, package_name) in packages}

0 commit comments

Comments
 (0)