fix s3_volume so that it can create empty recent/* objects on Ceph RadosGW
[arvados.git] / services / api / lib / app_version.rb
index 2f235d1eabe35cf388278435459ae78947107cde..abcf40ee3666622d9b2c0209531cd733c730f783 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 # If you change this file, you'll probably also want to make the same
 # changes in apps/workbench/lib/app_version.rb.
 
@@ -30,7 +34,7 @@ class AppVersion
     if @hash.nil? or @hash.empty?
       begin
         local_modified = false
-        git("status", "-s") do |git_pipe|
+        git("status", "--porcelain") do |git_pipe|
           git_pipe.each_line do |_|
             local_modified = true
             # Continue reading the pipe so git doesn't get SIGPIPE.