Skip to content

Commit 83acc88

Browse files
fix paths in get_package_properties.py (Azure#39049)
* Update get_package_properties.py * few more corrections
1 parent bd5dfd2 commit 83acc88

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

eng/scripts/get_package_properties.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"azure-core":[
1111
os.path.join("/sdk", "servicebus", "azure-servicebus"),
1212
os.path.join("/sdk", "eventhub", "azure-eventhub"),
13-
os.path.join("/sdk", "tables", "azure-data-table"),
14-
os.path.join("/sdk", "appconfig", "azure-appconfig"),
13+
os.path.join("/sdk", "tables", "azure-data-tables"),
14+
os.path.join("/sdk", "appconfiguration", "azure-appconfiguration"),
1515
os.path.join("/sdk", "keyvault", "azure-keyvault-keys"),
1616
os.path.join("/sdk", "identity", "azure-identity"),
1717
os.path.join("/sdk", "core", "azure-mgmt-core"),
@@ -22,10 +22,10 @@
2222
# related to windows only + emulator
2323
# os.path.join("/sdk", "cosmos", "azure-cosmos"),
2424
os.path.join("/sdk", "ml", "azure-ai-ml"),
25-
os.path.join("/sdk", "ai", "azure-ai-documentintelligence"),
25+
os.path.join("/sdk", "documentintelligence", "azure-ai-documentintelligence"),
2626
os.path.join("/sdk", "ai", "azure-ai-inference"),
27-
os.path.join("/sdk", "ai", "azure-ai-textanalytics"),
28-
os.path.join("/sdk", "ai", "azure-ai-doctranslation"),
27+
os.path.join("/sdk", "textanalytics", "azure-ai-textanalytics"),
28+
os.path.join("/sdk", "translation", "azure-ai-translation-document"),
2929
os.path.join("/sdk", "compute", "azure-mgmt-compute"),
3030
os.path.join("/sdk", "communication", "azure-communication-chat"),
3131
os.path.join("/sdk", "communication", "azure-communication-identity"),
@@ -34,7 +34,7 @@
3434
"azure-mgmt-core": [
3535
os.path.join("/sdk", "compute", "azure-mgmt-compute"),
3636
os.path.join("/sdk", "network", "azure-mgmt-network"),
37-
os.path.join("/sdk", "resource", "azure-mgmt-resource"),
37+
os.path.join("/sdk", "resources", "azure-mgmt-resource"),
3838
os.path.join("/sdk", "keyvault", "azure-mgmt-keyvault")
3939
]
4040
}
@@ -66,4 +66,4 @@
6666
)
6767
except:
6868
# Skip setup.py if the package cannot be parsed
69-
pass
69+
pass

0 commit comments

Comments
 (0)