Gulen Chongtham

Results 3 issues of Gulen Chongtham

Attempting to pull a repository URL (e.g. `git@gitlab-alias:group/project.git`) that uses `Host` alias from `~/.ssh/config` fails with the following error: ``` ssh: Could not resolve hostname gitlab-alias: no address associated with...

Trying to create a CSS Bundle with [jquery-ui.css](https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.css) fails with the following error: ``` System.ArgumentException: Illegal characters in path. at System.IO.PathHelper.Normalize(String path, Boolean checkInvalidCharacters, Boolean expandShortPaths) at System.IO.Path.GetFullPath(String path) at...

Consider the following CSS files: **screen.css**: ``` css body { background: white; } ``` **print.css**: ``` css body { background: none; } ``` **all.css**: ``` css @import 'screen.css' screen, projection;...