From bbd072fbfbee703eeb112069e07ced16b7723c58 Mon Sep 17 00:00:00 2001
From: Paul Barsic <paul.barsic@irisonboard.com>
Date: Mon, 5 Jun 2023 16:35:51 -0700
Subject: [PATCH 1/2] replaced file argument in deploy_cpu.sh

---
 serverless/deploy_cpu.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/serverless/deploy_cpu.sh b/serverless/deploy_cpu.sh
index 8fc1dacc453c..fba71afb134b 100755
--- a/serverless/deploy_cpu.sh
+++ b/serverless/deploy_cpu.sh
@@ -24,7 +24,7 @@ do
     fi
 
     echo "Deploying $func_rel_path function..."
-    nuctl deploy --project-name cvat --path "$func_root" --platform local
+    nuctl deploy --project-name cvat --path "$func_root" --file "$func_config" --platform local
 done
 
 nuctl get function --platform local

From 0b13cbc336884119cd9c8fde6708041783230c2e Mon Sep 17 00:00:00 2001
From: Paul Barsic <paul.barsic@irisonboard.com>
Date: Thu, 8 Jun 2023 10:27:33 -0700
Subject: [PATCH 2/2] broke up line to be consistent with deploy_gpu.sh

---
 serverless/deploy_cpu.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/serverless/deploy_cpu.sh b/serverless/deploy_cpu.sh
index fba71afb134b..03d6f17bad67 100755
--- a/serverless/deploy_cpu.sh
+++ b/serverless/deploy_cpu.sh
@@ -24,7 +24,8 @@ do
     fi
 
     echo "Deploying $func_rel_path function..."
-    nuctl deploy --project-name cvat --path "$func_root" --file "$func_config" --platform local
+    nuctl deploy --project-name cvat --path "$func_root" \
+        --file "$func_config" --platform local
 done
 
 nuctl get function --platform local