Adrien Siffermann

Results 4 issues of Adrien Siffermann

```sql IF NOT EXISTS (SELECT name FROM sys.sql_logins WHERE name='$(Login)') BEGIN CREATE LOGIN [$(Login)] WITH PASSWORD = $(Password) END ```

enhancement

In the [predefined script CreateUser.sql](https://github.com/geeklearningio/gl-vsts-tasks-azure/blob/master/Tasks/ExecuteSql/SqlPredefinedScripts/CreateUser.sql#L3-L4), the user and login names are not delimited with brackets. The script will the fail if the $(Login) SQLCMD variable contains reserved keywords or special...

bug

We search if AzCopy is installed with the agent using this relative path : ["../../azcopy.exe" ](https://github.com/geeklearningio/gl-vsts-tasks-azure/blob/master/Tasks/AzCopy/azCopy.ts#L39) On new agents, it can now be found with this path: "$(Agent.HomeDirectory)/externals/azcopy", which should...