diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-01 15:25:28 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-01 15:25:28 -0800 |
commit | ac3f83ca0d2839ada67085a1f93e27f1d1c402c5 (patch) | |
tree | 65b73759313e347f978578568810ddb956d81718 | |
parent | 4c179850abc1fd8d750b9a13e700819556c6be7d (diff) | |
parent | d5382ac05dd80fe5e963fd84bf00c970bda934c9 (diff) | |
download | nextcloud-server-ac3f83ca0d2839ada67085a1f93e27f1d1c402c5.tar.gz nextcloud-server-ac3f83ca0d2839ada67085a1f93e27f1d1c402c5.zip |
Merge pull request #6598 from lolozere/master
Add support mimetype
-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', ); |