[vulkan] Update release script to use unstripped .so

Bug: fxb/6384
Change-Id: Ie95c2f350253674de3f9b6369396d653b9e964d9
diff --git a/fuchsia/releasepackage.py b/fuchsia/releasepackage.py
index 32309c1..334fb51 100644
--- a/fuchsia/releasepackage.py
+++ b/fuchsia/releasepackage.py
@@ -41,7 +41,7 @@
 else:
   arch = "x64"
 
-target_name = "%s-shared/libvulkan_goldfish.so" % arch
+target_name = "%s-shared/lib.unstripped/libvulkan_goldfish.so" % arch
 git_repo_location = "%s/third_party/goldfish-opengl" % fuchsia_root
 package_dir = "libvulkan_goldfish/%s" % arch
 package_name = "fuchsia/lib/libvulkan/%s" % package_dir
@@ -96,7 +96,7 @@
 git_rev = subprocess.check_output(
     ["git", "-C", git_repo_location, "rev-parse", "HEAD"]).strip()
 
-cipd_command = ("%s cipd create -in %s -name %s -ref latest" 
+cipd_command = ("%s cipd create -in %s -name %s -ref latest"
                 " -install-mode copy -tag git_revision:%s") % (
                     fx_path, package_dir, package_name, git_rev)
 print cipd_command