diff options
author | lolozere <laurent@chedanne.pro> | 2014-01-01 14:09:02 +0100 |
---|---|---|
committer | lolozere <laurent@chedanne.pro> | 2014-01-01 14:09:02 +0100 |
commit | d5382ac05dd80fe5e963fd84bf00c970bda934c9 (patch) | |
tree | 65b73759313e347f978578568810ddb956d81718 /lib | |
parent | 4c179850abc1fd8d750b9a13e700819556c6be7d (diff) | |
download | nextcloud-server-d5382ac05dd80fe5e963fd84bf00c970bda934c9.tar.gz nextcloud-server-d5382ac05dd80fe5e963fd84bf00c970bda934c9.zip |
Add support mimetype
Add support mimetype for extension .sh, .bash and .sh-lib
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/mimetypes.list.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 3034c2777f7..740982910e0 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -108,4 +108,7 @@ return array( 'cc' => 'text/x-c', 'cpp' => 'text/x-c++src', 'c++' => 'text/x-c++src', + 'sh' => 'text/x-shellscript', + 'bash' => 'text/x-shellscript', + 'sh-lib' => 'text/x-shellscript', ); |